home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / WTEK0593.ZIP;1 / EDIT-CPP.ZIP / MAINFRM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-07  |  998 b   |  43 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CMDIFrameWnd
  6. {
  7.     DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9.     CMainFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Implementation
  18. public:
  19.     virtual ~CMainFrame();
  20. #ifdef _DEBUG
  21.     virtual    void AssertValid() const;
  22.     virtual    void Dump(CDumpContext& dc) const;
  23. #endif
  24.  
  25. protected:
  26.     BOOL OnCommand(UINT wParam, LONG lParam);
  27.  
  28. protected:    // control bar embedded members
  29.     CStatusBar    m_wndStatusBar;
  30.     CToolBar    m_wndToolBar;
  31.  
  32. // Generated message map functions
  33. protected:
  34.     //{{AFX_MSG(CMainFrame)
  35.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.         //    DO NOT EDIT what you see in these blocks of generated code !
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.